Test Series - computer fundamental

Test Number 10/95

Q: What does the symbol D represent in a hexadecimal number system?
A. 8
B. 16
C. 13
D. 14
Solution: The symbols A, B, C, D, E and F represent 10, 11, 12, 13, 14 and 15 respectively in a hexadecimal system. This system comprises of 15 numbers in total: digits from 0-9 and symbols from A to F.
Q: ABC is a valid hexadecimal number.
A. True
B. False
C. 
D. 
Solution: In a hexadecimal number system, alphabets are used for the representation of numbers from 10 to 15. Here, A represents 10, B represents 11 and C represents 12. Therefore, it is a valid hexadecimal number.
Q: The maximum number of bits sufficient to represent a hexadecimal number in binary:
A. 4
B. 3
C. 7
D. 8
Solution: The hexadecimal number system comprises of only 15 symbols: 10 digits and 5 symbols. Hence, three bits (24 = 16) are sufficient to represent any hexadecimal number in the binary format.
Q: The binary number 1110 in hexadecimal format is _____________
A. 6
B. E
C. 14
D. 15
Solution: Certain binary to hexadecimal representations are :
1010=A
1011=B
1100=C
1101=D
1110=E
1111=F.
Q: Convert (52)16 into its decimal equivalent.
A. 28
B. 83
C. 80
D. 82
Solution: To convert a hexadecimal number to decimal number:
161 * 5 + 160 * 2 = 80 + 2 = 82
Hence, the decimal equivalent is 82.
Q: The hexadecimal equivalent of the binary number (0010010100)2 is :
A. (0B4)16
B. (0A4)16
C. 224
D. 0114
Solution: To obtain the octal equivalent, we take numbers in groups of 3, from right to left
Q: Hexadecimal Addition of (3A5)16 and (1B2)16 will give :
A. 557
B. 185
C. 815
D. 516
Solution: Octal subtraction is done as follows:
3A5
+ 1B2
________
557
In hexadecimal addition of alphabets, we add the corresponding numbers they represent and then subtract the result from 16, then generate a carry of 1 to the next set of numbers.
Here, 5+2=7
A+B=10+11=21-16=5
3+1+1(carry)=5.
Q: The 2’s complement of 10.11 :
A. 10
B. 0.010
C. 01.01
D. 10.01
Solution: The 1’s complement of a number is obtained by reversing the bits with value 1 to 0 and the bits with value 0 to 1. Here, 10.11 gets converted to 01.00 in its 1’s complement format. Further, to convert 1’s complement into 2’s, we add 1 to the result. Here, 01.00+1=10.00.
Q: Convert (6532)8 to hexadecimal.
A. (A01)16
B. (A02)16
C. (D5A)16
D. (C01)16
Solution: To convert octal to hexadecimal, we first write binary format of the number and then make groups of 4 bits from right to left, as follows:
 6   5   3   2
110 101 011 010   (octal -> binary)
1101  0101  1010  (groups of 4)
 D    5      A    (hexadecimal equivalent)
Therefore, the hexadecimal equivalent is (D5A)16.
Q: What do we call the point(decimal) in any hexadecimal number of the form 111.A3?
A. radix
B. hexadecimal point
C. decimal
D. octal point
Solution: The decimal is often referred to as the hexadecimal point in hexadecimal representation of numbers.
It is referred to as the octal point in octal numbers.

You Have Score    /10